List to IList c#

51

list of list of string to list of string c# -

input.SelectMany(l => l).Distinct().ToList();

List to IList c# -

IList<IList<object>> ret = new List<IList<object>>();

Comments

Submit
0 Comments